import { Header } from "@/components/header";
import { Footer } from "@/components/footer";
import { ProductPage } from "@/components/product-page";
interface ProductPageProps {
params: Promise<{
id: string;
}>;
}
export default async function Product({ params }: ProductPageProps) {
const { id } = await params;
return (
<>
>
);
}
export async function generateMetadata({ params }: ProductPageProps) {
// In a real app, you'd fetch the product data here based on params.id
const { id } = await params;
const productName = id === "1" ? "Oversized Cotton Hoodie" : "Product";
return {
title: `${productName} | blcklst`,
description: `Shop the ${productName} at blcklst. Premium quality fashion pieces that define modern elegance.`,
};
}